74549e696c49f02bda7f79624cf843b8f1fadf1b,src/main/java/org/geppetto/simulation/manager/ExperimentRunThread.java,ExperimentRunThread,run,#,275
Before Change
}
catch(GeppettoExecutionException e)
{
simulationError(e);
throw new RuntimeException("Post run experiment error", e);
}
After Change
}
catch(InterruptedException e)
{
String errorMessage = "Error running experiment with name: (" + experiment.getName() + ") and id: " + experiment.getId();
simulationError(e,errorMessage);
throw new RuntimeException(e);
}